home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 19 / CU Amiga Magazine's Super CD-ROM 19 (1998)(EMAP Images)(GB)[!][issue 1998-02].iso / CUCD / Programming / LEDA / prog / graph / read_graph.c < prev    next >
C/C++ Source or Header  |  1994-08-05  |  520b  |  28 lines

  1. #include <LEDA/graph.h>
  2.  
  3.  
  4. void Read(GRAPH<float,float>& G, istream& is) { G.read(is); }
  5.  
  6. void Print(const GRAPH<float,float>& G, ostream& os) { G.write(os); }
  7.  
  8. int compare(const GRAPH<float,float>&, const GRAPH<float,float>&) { return 0; }
  9.  
  10. #if !defined(__TEMPLATE_FUNCTIONS__)
  11. typedef GRAPH<float,float> ff_graph;
  12. LEDA_TYPE_PARAMETER(ff_graph)
  13. #endif
  14.  
  15.  
  16. main()
  17. {
  18.   GRAPH<GRAPH<float,float>,string> G;
  19.  
  20.   int n = G.read(read_string("read graph from file: "));
  21.  
  22.   cout << "n = " << n << "\n";
  23.  
  24.   G.print();
  25.  
  26.   return 0;
  27. }
  28.